home *** CD-ROM | disk | FTP | other *** search
/ VisualFX for ImageFX / VisualFX for Image FX 2.adf / Files / SetUp / 02 / 09.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-01-23  |  607 b   |  27 lines

  1. /*
  2.                                  Visual FX
  3.                                     For
  4.                                  Image FX
  5.                                SetUp Script
  6.                            Written By J.L. White
  7.  
  8.                          (C)1997 Merlin's Software
  9.  
  10. */
  11. parse arg Num
  12. options results
  13. address "IMAGEFX.1"
  14.  
  15.  
  16.     Gadget.1 = 'Select Movement Of Image!'
  17.     Gadget.2 = 'Horizontal'
  18.     Gadget.3 = 'Vertical'
  19.     ListRequest 3 Gadget
  20.     Type = 0
  21.     if result = 2 then Type = 0
  22.     if result = 3 then Type = 1
  23.  
  24. call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
  25. call writeln TempFile,Type
  26. call close TempFile
  27.